*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(210deg, #00283d, #000508);
    font-family: 'poppins', sans-serif;
    overflow: hidden;
}
.content{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.texto{
    display: block;
    color: #FFFFFF;
    font-size: 4rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    width: 20ch;
    animation: mark .3s step-end infinite, write 6s steps(22, end) infinite;
}
#hero{
    position: relative;
}
#hero video{
    height: 100vh;
    width: 100%;
    background-position: absolute;
    z-index: 10;
    object-fit: cover;
}
#hero .content {
    height: 100%;
    width: 100%;
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .content h1{
    color: #ffffff;
    font-family: Arial,sans-serif;
}
#hero .content p{
    font-size: 18px;
    color: #FFFFFF;
    font-family: Arial,sans-serif;
}
.logo-on:hover .icone-audio-liga {
    transform: scale(1.2); /* Aumenta o tamanho da imagem em 10% */
}
.logo-off:hover .icone-audio-desliga {
    transform: scale(1.2); /* Aumenta o tamanho da imagem em 10% */
}
.audio-container {
    position: over;
    z-index: 40;
}
.icone-audio-liga {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 35px;
    height: 35px;
}
.icone-audio-desliga {
    position: absolute;
    top: 50px;
    left: 100px;
    width: 35px;
    height: 35px;
}
@keyframes mark {
    50% {
        border-right-color: transparent;
    }
}
@keyframes write {
    20% {
        width: 0ch;
    }
    70% {
        width: 20ch;
    }
    85% {
        width: 20;
    }
    100% {
        width: 20;
    }
}
